* { box-sizing: border-box; }

h2 { 
  font-family: sans-serif;
  line-height: 1.2; 
  font-size: 1.5rem;
}

.card {
  display: flex;
  width: 90%;
  flex: 0 1 calc(33.3% - 1em);
  flex-direction: column;
  justify-content: space-between;
  background: #f1f1f1;
  background: #D3FAC7;
  margin: 30px;
  overflow: hidden;
  border-bottom: 3px solid #97d285;
  box-shadow: 0px 5px 10px 3px rgba(0,0,0,0.3);
}
@media screen and (min-width: 630px) and (max-width: 1039px) {
  .card {flex: 0 1 calc(50% - 1em); }
}
@media screen and (max-width: 629px) {
  .card {flex: 0 1 calc(100%); }
}
.card--image {
  display: block;
  width: 100%;
  overflow: hidden;
  border-bottom: 3px solid #97d285;
}
.card--image img {
  display: block;
  width: 100%;
  transition: all 0.3s ease-in-out; 
}
.card--image img:hover { transform: scale(1.1); }

.card--heading {padding: 0 10px;}

.card--snippet {
  font-size: 14px;
	line-height: 20px;
	padding: 0 10px;
	margin-bottom: 15px !important;
  flex: 1 1 auto;
}

.card--link {
  width: 35%;
  font-size: 12.5px;
	background: #89c4a0;
	color: #FFF;
	padding: 8px 10px; 
  text-decoration: none; 
  text-align: center
}